/*
    @SMALL DISPLAY CSS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
     Stack all of the grid areas on top of each other.
9 july 2024
*/



@media only screen and (max-width: 800px)
{

body
{
   font-family: GT Walsheim,Helvetica,Arial,sans-serif;
    font-size: 18px;
    background-color: aliceblue;


}


/*
     5 April 2025 Course and Lesson Title Prefix Text class styles

*/

.course_cfg_doc_title_prefix_class
{
    color:red;
}

.lesson_doc_title_prefix_class
{
    color:magenta;
}


    /*
        Set all URLs to be Black
    */
    a {
        color: black; /* Set the link color to black */
        text-decoration: none; /* Remove underline from links */
    }

    a:hover, a:visited, a:active {
        color: black; /* Ensure the link remains black on hover, visit, and active states */
    }



/*
     14 April 2025 Learn Page Hamburger page Menu
*/

.dp_page_menus_class {
  position: relative;
  z-index: 1000;
  background: white;
  width: 39px; /* enough to show the hamburger */
  height: auto;
  border-radius: 5px;
  padding: 5px;
  box-shadow: 0 0 10px -1px #dddfe1;
  overflow: hidden;
  transition: width 0.3s ease, height 0.3s ease;

  border-radius: 5px;
  box-shadow: 0 0 10px -1px #dddfe1;
}

/* Hides all children EXCEPT the hamburger icon */
.dp_page_menus_class:not(.open) span,
.dp_page_menus_class:not(.open) .dp_esp_status_span_class,
.dp_page_menus_class:not(.open) .dp_left_menu_content_class {
  display: none;
}

/* Optional class for your menu items if you want more control */
.dp_left_menu_content_class {
  margin-top: 10px;
}

.dp_page_menus_class.open {
  width: 350px;
  height: 50vh;
  padding: 10px;
  border: 5px solid orange;
  border-radius: 10px;
  overflow-y:scroll;
}

/* Hamburger icon always visible */
.dp_hamburger_menu_icon_image {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: block;
}




/*
     22 march 2025
     Learn Page Main Document page Grid CSS
*/

.dp_main_page_grid_class {
    display: grid;
    grid-template-areas:
        "dp_page_menus_class dp_page_heading_class"        
        "dp_page_content_class  dp_page_content_class"
        "dp_page_text_class dp_page_text_class";

    grid-template-columns: minmax(40px, 45px) 1fr;
    grid-template-rows: minmax(3vh,6vh) minmax(20vh,100vh) 1fr;
    grid-row-gap: 5px;
    grid-column-gap: 10px;
    width: 100%;
    margin: 0rem;
    padding: 0.5rem;
    background-color: #f57c00;
    border-radius: 5px;
    box-shadow: 0 0 10px -1px #dddfe1;
    transition: grid-template-rows 0.3s ease;
}




/*
    16 Aug 2024 ep2 Small display styling
*/

   .ep2_container {
       width: calc(49% - 19px);
       height: 30vh;
    }

        .ep2_title {
            font-size: 1.2em;
            margin-top: 1em;
            
            background-color: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 5px;
        }

        .ep2_sub_title {
            font-size: 1.0em;
            margin-top: 0.5em;

            background-color: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            padding: 5px;
        }

        .ep2_text {
            font-size: 0.9em;
            margin-top: 0.5em;
        }


        .ep2_button {
            position: relative;
            width: fit-content;
            padding: 5px 10px;
            background-color: white;
            color: blue;
            border: 2px solid blue;
            border-radius: 10px;
            cursor: pointer;
            text-decoration: none;
            font-size: 0.8em;
            transition: all 0.3s ease;
        }



/*
    17 Aug 2024 ep3 Small display styling
*/

 .ep3_container {
                flex-direction: column; /* Stack elements vertically */
                width: fit-content;
                height:auto;
            }

            .eps3_hero_image {
                order: 1; /* Make sure the hero image is first */
                width: 100%;
                height: auto;
                border-radius: 10px 10px 0 0; /* Adjust border radius for top of stack */
            }

            .ep3_content {
                order: 2; /* Place the content below the hero image */

                height: fit-content;
                padding: 20px;
            }

            .ep3_button {
                align-self: center;
                margin-top: 20px;
            }


/*
    Youtube Video iframe responsive CSS
*/
.videoWrapper {
    position: relative;
    height: 33vh;
    display: inline-block;
    width: 85%;

}


.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Company Logo Link Icon Image CSS Class */
.complogo_link_icon_class
{
    width:40px;
}

/* Back History Button */
.back_button_class
{
    position: relative;
    height: 25px;
    max-width: 50px;
    vertical-align:top;
}

.page_content img
{
   max-width:95%;
}


/*
    Overall Home Page Wrapper CSS >>>>>>>>>>>>>
*/
.home_wrapper
{
    display: grid;
    grid-template-areas:
        "home_header"
        "home_content"
        "home_left"
        "home_right"
        "home_footer";

    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;

}



/*
    SMALL Home Page Header CSS
*/
.home_header
{
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    z-index:1000;

    grid-area: home_header;
    margin-left: 0px;
    margin-right: 0px;

    padding:5px;

    border-radius: 10px;
    border-bottom: 5px solid #f57c00;
    background-color: white;

}


/*
    Home Page Left Col CSS
*/
.home_left
{
    grid-area: home_left;
    background-color: white;
    padding:5px;
}


/*
    Home Page Content CSS
*/
.home_content
{
    grid-area: home_content;
    background-color: white;
    padding:5px;
}


/* Set the max home page image width */
.home_content img
{
   max-width:95%;
}


/*
    Home Page Right Col CSS
*/
.home_right
{
    grid-area: home_right;
    background-color: white;
    padding:5px;
}


/*
    Home Page Footer CSS
*/
.home_footer
{
    grid-area: home_footer;
    background-color: white;
    padding:5px;
}




/*
    SMALL Overall Normal Page Wrapper CSS >>>>>>>>>>>>>
*/
.page_wrapper
{
    display: grid;
    grid-template-areas:
        "page_header"
        "page_content"
        "page_left"
        "page_right"
        "page_footer";

    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
 background: linear-gradient(rgba(255,255,255,.97), rgba(255,255,255,.97)), url("../test1_images/JackBord_Block3_PCB_bk_Image_ver1c_20_Feb_2021_idx74831716.png");

    background-repeat: repeat;
    background-size: contain;
    background-position-x: center;
    background-position-y: center;

}



/*
    SMALL Normal Page Header CSS
*/
.page_header
{
  /*  position: -webkit-sticky; */ /* For Safari */
/*    position: sticky; */
    top: 0;

    grid-area: page_header;
    background-color: white;

    padding:5px;

    margin-left: 5px;
    margin-right: 5px;

    border-bottom: 5px solid #f57c00;
    border-radius: 10px;
    background-color: white;
}


/*
    Normal Page Left Col CSS
*/
.page_left
{
    grid-area: page_left;
    background-color: white;
    padding:8px;
    display:none;
}


/*
    Normal Page Content CSS
*/
.page_content
{
    grid-area: page_content;
    background-color: white;
    padding:1px;
}


/*
    Normal Page Right Col CSS
*/
.page_right
{
    grid-area: page_right;
    background-color: white;
    padding:8px;
}


/*
    Normal Page Footer CSS
*/
.page_footer
{
    grid-area: page_footer;
    background-color: white;
    padding:8px;
}



/*
     2 May 2019 SMALL Upgrade START >>>>>>>>>>>>>>>
*/


/*
    SMALL Screen GRID CSS

        This sets the layout of the small screen grid menu items.
*/
.menugrid_small_screen
{
    display: grid;
    max-width: 90%;
    margin: 0px;
    padding-left:5px;
    grid-gap: 5px;

    /* . means leave the grid col empty */
    grid-template-areas:
        "hamburger_menu comp_logo search_prompt";

    grid-template-rows: 1fr;
    grid-template-columns: 0.1fr 0.1fr 1fr;
    align-items:center;
    justify-content: space-evenly;
}



/* Hide the Large screen menu grid for small screens */
.menugrid_large_screen
{
    display: none;
}



/*
    GRID Menu Items
    2 May 2019 The hamburger button is always the first followed by the company logo.
*/


.hamburger_menu_class
{
    grid-area: hamburger_menu;
}


/* Hamburger Menu Button CSS */

.hamburger-nav
{
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    background-color: rgb(255, 209, 153);
    
    overflow-x: hidden;
    padding-top: 0px;
    transition: 0.5s;
}

.hamburger-nav a
{
    padding: 10px 10px 10px 30px;
    text-decoration: none;
    font-size: 15px;
    color: #000;
    display: block;
    transition: 0.3s;
 }



.hamburger-nav a:not(.btn-close):hover {
  color: #000;
  background-color: #f57c00;
}



.hamburger-nav .btn-close
{
    position: relative;
    top: 0;
    right: 22px;
    font-size: 36px;
    margin-left: 50px;
}


.hamburger_menu_icon_image
{
   height:50px;
   position: static;
   z-index:1000;
}



.hamburger_close_icon
{
   height:50px;
   position: static;
   z-index:1000;
   float: right;
   margin-right: -20px;
}



/*
     2 May 2019 SMALL Upgrade STOP >>>>>>>>>>>>>>>>
*/




/*
     21 Aug 2024 > New Search Results css
*/

        .search1_container {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            text-align: left;
            margin: 10px;
            width: auto;
            background-color: white;

            padding: 10px;
            position: relative; /* Add relative positioning */
            cursor: pointer;

            border-width: 2px;
            border-radius: 10px;
            border-color: #CCF5E1;
            border-style: solid;

        }

        .search1_hero_image_div
        {
            width: 150px;
            overflow: clip;

        }

        .search1_hero_image {
            width: auto;
            height: 80px;
            margin-right: 20px;
            object-fit: contain;
            border-radius: 10px;
            background-color: #FFF;
        }


        .search1_content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .search1_title {
            font-size: 1.0rem;
            margin-top: 0;
            padding-left: 5px;
        }

        .search1_sub_title {
            font-size: 1.1em;
            margin-top: 0.5em;
            padding-left: 10px;
        }


        .search1_text {
            margin-top: 0px;
            text-align: left;
            padding-left: 10px;
            line-height: 1.2;
            font-size: 0.8rem;

        }


        .search1_button {
            align-self: flex-start;
            margin-left: 0px;
            margin-top: auto;
            padding: 0px 6px;
            background-color: white;
            color: #f57c00;
            border: 2px solid #f57c00;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1em;
            transition: all 0.3s ease;

        }

        .search1_button:hover {
            background-color: #f57c00;
            color: white;
            border: 2px solid white;
        }

        .search1_subject_icons_div {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            gap: 10px; /* Space between the icons */
        }

        .search1_subject_icon {
            width: 50px;
        }

        /*
            CSS for the Level number of the item.
        */
        .search1_level_div
        {
            width: 20px;
            height: 20px;
            border-radius: 50%; /* Makes the div a circle */
            background-color: white; /* Optional: background color */
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px; /* Adjust the size of the number */
            text-align: center;
        }



        .search1_context_buttons_container {
            display: grid;
            grid-area: search1_context_buttons_container;
            grid-template-areas: "search1_context_all search1_context_electronics search1_context_coding search1_context_sensors search1_context_control search1_context_robotics search1_context_plans search1_context_lessons search1_context_activities search1_context_projects search1_context_videos search1_context_level";
            grid-template-columns: auto;
            grid-template-rows: 40px;
            height: 40px;

            align-items: center;
            text-align: center;
            padding-left: 10px;
            padding-right: 10px;
        }



        .search1_context_buttons {
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0 0 3px -1px blue;
            margin: 5px;
            background-color: white;
        }

        .search1_context_buttons:hover {
            background-color: white;
            color: black;
            transform: scale(1.15);
            border: 2px solid blue;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;
            padding: 5px;
        }

        .search1_context_buttons.active {
            background-color: yellow;
            color: black;
            border: 2px solid black;
        }



/*
     Esp Search Results CSS Settings
       These are the settings for the search results on the esp_search_Final prog.
*/

/* Set the style of the stock item title ie the item name at the top the one they click on etc search results. */
#search_results_stock_item_title
{
  height:1em;
  font-size:medium;
  color:#000000;
  background-color:transparent;
     font-weight: bold;
}

/*
  Search Results RRP Display Class
  Set the style of the stock item rrp price display search results. */
.search_results_stock_item_rrp
{
  height:1em;
  font-size:large;
  color:#000000;
  background-color:transparent;
}


/* Set the style of the stock item conent ie bcode, description etc search results. */
#search_results_stock_item_content
{
  height:1em;
  color:#000000;
  background-color:transparent;
}

/* Set the style of the Categories title. */
#search_results_cat_title
{
  height:1em;
  font-size:medium;
  color:#000000;
  background-color:transparent;
     font-weight: bold;
}


/* Set the style of the web cat search results. */
#search_results_category
{
  height:1em;
  color:#000000;
  background-color:transparent;
}

/* Set the style of the section title. */
#search_results_sec_title
{
  height:1em;
  font-size:medium;
  color:#000000;
  background-color:transparent;
     font-weight: bold;
}



/* Set the style of the web section search results. */
#search_results_section
{
  height:1em;
  color:#000000;
  background-color:transparent;
}


/*
     Search Prompt Span CSS
*/
.search_prompt_span
{
    height: 38px!important;
    color:#000000;
    overflow: hidden;
    display: inline-block;
    top: 0px;
    position: relative;
    left: 5px;
    width: 200px;
}




/*
    Search Text prompt input.
*/
.search_prompt_input
{
   background-color:white;
   font-size:small;
   width: 90%;
   height: 2em;
   border-color: #FF9300;
   border-style: solid;
   border-width: 2px;
   border-radius: 10px;
}

/*
     Search GO Button CSS
     Button icon set on pg 263
*/
.search_text_but_icon
{
    padding:0px;
    height:20px;
    vertical-align: bottom;
    display: none;
}

/*
     Search Results Table
*/
#search_results_table
{
    width:100%;
    float:right;
    height:auto;

    /* Use 1% from the width. */
    padding-left:1%;

    /* Set the Default font color. */
    color:gray;
}




/*
    JB Site Specific CSS
*/

.mega_menu_link_css
{

}


.mega_menu_link_css:hover
{
    border-radius: 5px;
    padding:10px;
    background-color: #f57c00;
    color: white !important;
    text-decoration: none !important;
   /* width: fit-content; */

    padding:5px;
}



/*
     12 March 2025 > New Learn Page Lesson Row Result css
*/

        .lesson_row_container {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            text-align: left;
            margin: 10px;
            width: auto;
            background-color: white;

border-width: 1px;
border-radius: 5px;
border-color: #f57c00;
border-style: solid;

            padding: 10px;
            position: relative; /* Add relative positioning */
            cursor: pointer;

        }


        .lesson_row_container:hover {
          background-color: #f57c00;
          color: white;
        }


        .lesson_row_hero_image_div
        {
            width: 160px;
            overflow: clip;
        }

        .lesson_row_hero_image {
            width: auto;
            height: 80px;
            margin-right: 20px;
            object-fit: cover;
            border-radius: 10px;
            background-color: #FFF;
        }


        .lesson_row_content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .lesson_row_title {
            font-size: 1.25em;
            margin-top: 0;
            padding-left: 20px;
        }

        .lesson_row_sub_title {
            font-size: 1.1em;
            margin-top: 0.5em;
            padding-left: 20px;
        }

        .lesson_row_descr {
            margin-top: 15px;
            text-align: left;
            padding-left: 50px;
            font-size: 1em;
            line-height: 1.2;
            /* 2 text lines high */
            height:2.5em;
            overflow:hidden;
        }


/*
       13 March 2025 This is for lessons that dont have icon
             images set in the course lesson list page.
*/
       .lesson_row_no_icon_div_class
       {
          background-color: peachpuff;
          width: auto;
          height: 80px;
          padding: 10px;

          border-radius: 5px;

       }





/*
     17 Sep 2024 > Knowledge Tree Page CSS
*/
  /* Lesson Grid CSS */
        .kt_lesson_grid
        {
            display: grid;
            grid-area: kt_lesson_grid;

            grid-template-areas:
                "kt_list_heading"
                "kt_subject_list_buttons"
                "kt_context_buttons_container"
                "kt_platform_buttons_container"
                "kt_list_container";

            grid-template-columns: auto;
            grid-template-rows: 40px auto auto auto 1fr;

            grid-row-gap: 5px;
            grid-column-gap: 10px;

            width: 100%;
            margin-top: 0.5rem;

            padding: 0.5rem;

            background-color: #f57c00;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;

            margin-left: 0;
            margin-right: 0;
        }

        .kt_list_heading
        {
            grid-area: kt_list_heading;
            height: fit-content;
            text-align: left;
            font-size: x-large;
            background-color: white;
            padding:5px;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;
        }




        .kt_context_buttons_container {
            display: flex;
            flex-wrap: wrap;
            grid-template-areas: "kt_context_plans kt_context_lessons kt_context_activities kt_context_projects kt_context_commands kt_context_programs kt_context_items";
            grid-template-columns: repeat(7, minmax(10px, 88px)); /* Ensure each button has equal space */
            grid-gap: 2px; /* Reduce gap between buttons */
            align-items: center;
            text-align: center;
            padding-left: 5px; /* Reduced padding */
            padding-right: 5px;
            font-size:smaller;
        }

        .kt_context_buttons {
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0 0 3px -1px #f57c00;
            margin: 2px; /* Reduce margin */
            background-color: white;
            width: 60px;
            font-size:  0.75rem;

        }


        .kt_levels_container {
            display: grid;
            grid-area: kt_levels_container;
            grid-template-columns: minmax(210px,1fr);
            padding-left: 10px;
            padding-right: 10px;
            /* background-color: yellow; */
            width: fit-content;
        }


        .kt_platform_buttons_container
        {
            display: flex;
            flex-wrap: wrap;
            grid-area: kt_platform_buttons_container;
            grid-template-areas: "kt_platform_pro kt_platform_basic kt_platform_virtual kt_levels_div";
            grid-template-columns: repeat(7, minmax(10px, 88px));

            grid-gap: 0px; /* Reduce gap between buttons */
            align-items: center;
            text-align: center;
            padding-left: 5px; /* Reduced padding */
            padding-right: 5px;

        }

        .kt_platform_buttons {
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0 0 3px -1px #f57c00;
            margin: 3px;
            background-color: white;
            font-size: 0.75rem;
            width: 60px;

        }

        .kt_platform_buttons:hover {
            background-color: deeppink;
            color: white;
            border-radius: 5px;
            padding: 5px;
        }

        .kt_platform_buttons.active {
            background-color: #f57c00;
            color: white;
            border: 2px solid white;
        }


        .kt_menu_icons {
            grid-area: kt_menu_icons;
            padding: 10px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;
        }

        .kt_subject_list_buttons {
            grid-area: kt_subject_list_buttons;
            padding: 5px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;
            text-align: center;
            font-size: smaller;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        }

        .kt_subject_entry_button {
            cursor: pointer;
            padding: 5px;
            border-width:2px;
            border-radius: 5px;
            border-color: #f57c00;
            border-style: solid;
            margin: 5px;
            float: right;
            font-size: small;
    }


        .kt_subject_entry_button:hover {

            background-color: deeppink;
            color: white;

            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;
            padding: 5px;
        }

        .kt_subject_entry_button.active {
            background-color: #f57c00;
            color: white;
            border: 2px solid #f57c00;
        }

        .kt_levels_div
        {
            grid-column: span 3;
            cursor: pointer;
            height: 20px;
            padding: 5px;
            border-radius: 5px;
            box-shadow: 0 0 3px -1px blue;
            /* margin: 5px; */
            background-color: white;
            font-size: small;
            width: 247px;
            margin-left: 3px;
        }



        .kt_context_buttons:hover {
            background-color: deeppink;
            color: white;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #f57c00;
            padding: 5px;
        }

        .kt_context_buttons.active {
            background-color: #f57c00;
            color: white;
            border: 2px solid white;
        }

        .kt_list_container {
            display: grid;
            grid-area: kt_list_container;
            grid-template-areas: "auto";
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr;

            align-items: center;
            text-align: left;
            padding-left: 10px;
            padding-right: 10px;
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 0 10px -1px #dddfe1;
            overflow:auto;

        }

        .kt_list_item {
            background-color: cyan;
            padding: 5px;
        }

        .kt_search_prompt_container {

           padding:5px;
        }

        .span-two-rows {
            grid-row: span 2;
        }


        #dp_sse_status_span_id
        {
           display: none;
        }

        #dp_esp_status_span_id
        {
           display: none;
        }

        #kt_subject_buttons_heading
        {
            display: none;
        }


/*
     [emailus] Link CSS style
*/

#emailuslink {
color:#000000;
font-size:medium;
 /* No lines under links */
    text-decoration:none;

}


/*
     Email us Button Icon Class
     21 Aug 2016
     This is for the email us icon tag.
*/
.emailus_button_icon
{
  width:42px;
}

/*
    Shopping Cart Blurb CSS Style
*/
#shopping_cart_blurb
{
   font-size:medium;
}



/*
  Shopping Cart Link CSS
    This is for the carticon tag.

*/
.show_cart
{
  position:relative;
  width:54px;
}



/* Cart Quick Login Button CSS */
.cart_quick_login_button
{
  font-size:medium;
}


/*
    View Shopping Cart Icon Class CSS.
      This is for the shopping cart icon.
*/
.show_cart_link_icon
{
   height:42px;
}


/*
    Cart Total no of items in cart text.
*/
.show_cart_total
{
   position:absolute;
  left:-12px;
  top:25px;
  font-size:large;
}

/*
    This is the CSS for the cart icon
*/
#cart_icon_ajax_span
{
}


/*
    Checkout Link CSS
*/
.checkout_link
{
}

.checkout_link_icon
{
  height:20px;
}




/*
    Main Shopping Cart Page Content Table Style
      This applies to the Three Step sections ie Steps 1 to 3 tables.
*/
#shopping_cart_page_content
{
   width:95%;
    overflow:auto;
    margin:10px;
    padding:10px;

    /* Set the Default font color. */
    color:#000000;

/*   background-color:#FFFFFF;  */
  /* background:rgba(0, 0, 0, 0) linear-gradient(to right, orange, white) repeat scroll 0 0; */
     border-radius: 20px;
}

/*
      Step 1  Section CSS Style

         The following applies to the Step 1 section of the shopping cart.
      ie items list.
*/

/* The main top header for Step 1 */
#cart_step1_header
{
    background-color:#88d969;
       vertical-align:middle;
}

/*
    Step 1 Main CSS
      This applies to the step 1 section below the header.
*/
#shopping_cart_step1
{
    padding: 0px;
    margin-top:10px;
    width: 100%;

    /* Set the Default font color. */
    color:black;
}



/*
      Cart TD Item row Class
     14 Jan 2017
*/
.shopping_cart_stock_item_td_row
{
    border-top: 1px solid #dddddd;
    padding:5px;
    font-size:smaller;
}


/* Cart stock item image css */
.shopping_cart_stock_item_img
{
   min-width:100px!important;
}



/* Cart Update Button css */
.cart_update_button
{
    font-size:medium;
}



/*
    27 May 2014  Cart item row total ex Tax style
       Sets the style for the ex tax item total text.
*/
#shopping_cart_stock_item_ex_tax_total
{
  height:1em;
  font-family:Verdana,Arial;
  font-size:small;
  color:black;
}



/*
    27 May 2014  Cart item row total inc Tax style
       Sets the style for the inc tax item total text.
*/
#shopping_cart_stock_item_inc_tax_total
{
  height:1em;
  font-family:Verdana;
  font-size:medium;
  color:black;
}




/*
    13 Oct 2010 Controls the stock item row style for the shopping cart.
*/
#shopping_cart_stock_item_row
{
  height:1em;
  font-family:Verdana;
  font-size:medium;
  color:black;
  background-color:white;
}




/*
      TNT Freight Quote Page CSS
      5 June 2016 This is the CXSS for the freight quote page.
*/
#tnt_freight_quote_page_body_css
{
     width:100%;
    overflow:auto;
    margin:10px;
    padding:10px;


    /* Set the Default font familay and size. */
    font-family:Verdana, Helvetica, sans-serif;
    font-size:1em;

    /* Set the Default font color. */
    color:#000000;

   background-color:#FFFFFF;
   background: rgba(0, 0, 0, 0) linear-gradient(orange, white) repeat fixed 0 0;
     border-radius: 20px;

}

/*
     TNT Freight Quote Table CSS
      5 June 2016 This is the CSS for the freight quote table
         that displays the freight quotes.
*/
#tnt_freight_quote_table_css
{
     width:100%;
     padding:10px;
}

/*
      Freight Country Select Prompt
*/
#dest_country_select
{
     background:#FFFFFF;
     cursor:pointer;
     border-radius: 3px;
     font-size:medium;

      /* Thin Border */
    border: 1px solid #ccc;
}

/*
     TNT Freight Quote ERROR Message CSS
      8 Aug 2016 This is the CSS for the various TNT error messages.
*/
#tnt_error_message
{
}

/*
    19 March 2014 Controls the Freight stock item row style for the shopping cart.
*/
#shopping_cart_freight_stock_item_row
{
  height:1em;
  font-family:Verdana;
  font-size:small;
  color:black;
  background-color:white;

}

/* Step 1 Freight Total Row in the items section */
#cart_step1_freight_total_row
{
  height:1em;
  color:black;
}


/*
      Step 2 Freight and Delivery Details Section CSS Style

         The following applies to the Step 2 section of the shopping cart.
      ie freight
*/

/* The main top header for Step 2 */
#cart_step2_header
{
      background-color:#9ACBD9;
        width:100%;
       vertical-align:middle;
}

/*
    Step 2 Freight Main CSS
      This applies to the step 2 Delivery and Freight Section

*/
#shopping_cart_step2
{
  /* background-color:#FFFFFF; */
    border-radius: 20px;
    padding: 10px;
    margin-top:10px;
    width: 100%;

    /* Set the Default font color. */
    color:black;
}

/* Step 2 Left hand Freight Panel.
             This is the main TNT freight panel on the left.
  Set the left panel width to 70% to leave room for the Delivery details on the right.
*/
#cart_step2_freight_panel
{
     padding:5px;
}


/*  Step 2 Delivery Details panel on the right */
#cart_step2_delivery_details
{
   width:50%;
   padding:5px;
    /* Set the Default font color. */
    color:black;
    border-right:solid 1px #000000;
}

/*
      Customer Address, Password, Item Cart Quantity Prompts Class
      This is for all of the customer delivery details prompts etc
*/
input[type=text].cust_addr_prompts, input[type=email], input[type=password], input[type=text].cart_item_qty_prompt
{
    background:#FFFFFF;
    cursor:pointer;
    border-radius: 3px;
    font-size:medium;

    /* Thin Border */
    border: 1px solid #ccc;
}


/*
      Step 3 Payment Details Section CSS Style

         The following applies to the Step 1 section of the shopping cart.
      ie items list.
*/


/* The main top header for Step 3 */
#cart_step3_header
{
      background-color:#9ACBD9;
        width:100%;
       vertical-align:middle;
}

/*
    Step 3 Payment Section Main CSS
      This applies to the step 3 Payment Section

*/
#shopping_cart_step3
{
 /*    background-color:#FFFFFF; */
    border-radius: 20px;
    padding: 10px;
    margin-top:10px;
    width: 100%;

    /* Set the Default font color. */
    color:black;
}

/* Step 3 Payment Panel CSS
       This is the panel below the header. */
#cart_step3_payment_panel
{

    /* Set the Default font familay and size. */
    font-family:Verdana, Helvetica, sans-serif;
    font-size:small;

    /* Set the Default font color. */
    color:black;

}


/*
     generate_website_stock_items_table_html Function Mode 2 CSS
       30 Dec 2010 > This is the css for the display of stock items in a section using mode 2.
NOTE this is used for the modes in which there is ONE stock item per row.
*/
#mode_2_stock_item_row_css
{
      border-top: 1px solid #dddddd;
      padding:5px;
}


/* Shopping Cart Links
      These are for the create account link.
*/
.shopping_cart_links
{
      font-size:small;
}



/*
    Home Page Stories CSS Grid Layout
*/
.home_page_stories_group_items_grid
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  justify-content: space-evenly;
  grid-gap: 2px;
  background-color:#FFF;
  padding:5px;
}



/* SMALL DISPLAY Image Slider CSS Settings ***********   */

#image_slider {
   width:100%;
   height:550px;
   margin:1px auto;
   background:#FFF;

/* border:2px solid #000; */

   overflow:auto;
   box-shadow:0 0 10px #000;
}

#image_slider ul {
   float:left;
   /* jp9 set to 9999 from 999 */
   margin-right:-9999em;
   white-space:nowrap;
   list-style:none;
}

#image_slider li {
   margin:3px;
   text-align:left;
   float:left;
   display:inline-block;
}

#image_slider img {
   border:0;
   display:inline;
   border:0px solid #A3CBE0;
}

#image_slider a:active img, #image_slider a:focus img, #image_slider a:hover img {
   border:1px solid #000;
}

#image_slider a {
   text-decoration:none;
   font-weight:normal;
   color:#000;
}

#image_slider a:active, #image_slider a:focus, #image_slider a:hover {
   color:#000;
}

#image_slider span {
   padding:1px 0 0;
   display:block;
}

/* ------------- Flexcroll CSS ------------ */
.scrollgeneric
{
    line-height:1px;
    font-size:1px;
    position:absolute;
    top:0px;
    left:0;
}

/*
   The scroll bar background.
*/
.hscrollerbase {
    height:12px;
    background:#FFF;
}


/*
     The scroll bar itself.
*/
.hscrollerbar {
    height:12px;
    background:lightgray;
    cursor:e-resize;
    padding:3px;
    border:0px solid #A3CBE0;
}

.hscrollerbar:hover {
    background:#222;
    border:1px solid #222;
}

.vscrollerbase
{
    visibility: visible !important;
}

/* 16 Jan 2019 Make sure the small screen ver fits to the screen width correctly */
#image_slider_mcontentwrapper
{
    width:auto;

}



/*
    SMALL Web News Blog Main DIV CSS Style Class
    29 March 2017  This is for the web news tags main div block.
*/
.web_news_blog_div
{
    display:grid;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    padding:0px;
}

/*
    Web News Blog li Item CSS Style Class
    29 March 2017  This is for the web news tags news item li block
*/
.web_news_blog_item
{
    max-height: 200px;
    text-align:center;
}


/* Blog news item link css */
.web_news_blog_item a
{
    color:black;
}


/*
    Web News Blog Icon CSS Style Class
    29 March 2017  This is for the news items icon.
*/
.web_news_blog_icon
{
    max-width:150px;
    max-height:125px;
    margin: 0px;
    overflow: hidden;
}


/*
    Web News Blog Caption CSS Style Class
    29 March 2017  This is for the caption under the news icon.
*/
.web_news_blog_caption
{
    max-height:2em;
    margin-top:5px;
    padding:5px;
    overflow: hidden;
    text-decoration:none;
}



/* Display a Single Stock item with display_item Final */

/* Items image */
.display_item_image
{
 width:90%;
}



/*
    Shopping Cart General CSS >>>>>>>>>>>>>>>>>
*/

/* Shopping cart add button css note this is alkso used by the do_ajax prog. */
.cart_add_button_css
{
   border-style:solid;
   border-width:1px;
   border-color:#000;
   background-color:#FFF;
}


/*
     5 Dec 2018 Back to Cart Icon css.
*/
.back_to_cart_icon
{
    width:25px;

}


        /*
            Global GroupIcons Tag CSS Styles >>>>>>>>>>>>>>>>>>>>
                These apply regardless of the display size.
        */

        .groupicons_member_image
        {
            grid-area: groupicons_member_image;
            text-align: center;
        }

        /*
            For the members image file.
        */
        .groupicons_member_image_file
        {
            text-align: center;
            width: 100%; /* Scale the image to the width of the container */
            height: 152px; /* Maintain the aspect ratio */
            max-width: 100% !important; /* Ensure the image doesn't exceed the container's width */
            object-fit: contain; /* Ensure the image fits within the container */
            border-radius: 10px;
            background-color:white; /* in case the icon has no background */

        }



        .member_image_link
        {
            text-decoration:none;
        }

        .groupicons_member_name
        {
            grid-area: groupicons_member_name;
            font-weight: 600;
            font-size: smaller;
        }

        .groupicons_member_pub_date
        {
            font-size: small;
        }

        .groupicons_member_name_link
        {
            text-decoration: none;
        }

        .groupicons_member_descr
        {
            grid-area: groupicons_member_descr;
            overflow: hidden;
            color: black;
            font-size: smaller;
        }


        .groupicons_member_price
        {
            grid-area: groupicons_member_price;

            color: black;
            text-align: right;
        }

        .groupicons_member_discount
        {
            grid-area: groupicons_member_discount;
            display: initial;
            color: red;
            text-align: right;
            font-style: italic;
        }

        .groupicons_member_discount_icon
        {
            height: 25px;
        }

        .groupicons_member_add_button
        {
            grid-area: groupicons_member_add_button;
            align-self: end;
            text-align: right;
        }



        .groupicons_member_stocks
        {
            grid-area: groupicons_member_stocks;
            text-align: right;
        }


        .groupicons_member_freight {
            grid-area: groupicons_member_freight;
            text-align: right;
        }

        .groupicons_member_info
        {
            grid-area: groupicons_member_info;
            text-align: right;
        }

        .member_info_icon_image
        {
            grid-area: member_info_icon_image;
            height: 25px;
            text-align: right;
        }

      /*
            @Column Mode CSS GRID Settings >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                This is for modes 50 to 57.
                These are the column layout modes.
        */


        /*
            Column Modes 10 to 17 > Setup the Main Grid Layout (LARGE SCREEN) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                This is the setup of the layout which will contain all of the memebers.

        */
        .groupicons_column_modes_main_group_container
        {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));

            grid-template-rows: auto;

            justify-content: space-evenly;
            text-align: left;
            grid-gap: 15px;
            margin: 10px;
        }


        /*
            Mode 50 > Columns: Everything. >>>>>>>>>>>>>>>>>>>>>>>
        */
        .groupicons_column_display_mode50
        {
            /*
                Small screen image at the top.
            */
                grid-template-areas:
                "groupicons_member_image    groupicons_member_image"
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

            /*
                Set the width of the Grid Columns
            */
                grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                /* Set 6 rows */
                grid-template-rows:  max-content max-content auto auto auto auto;
            }





        /*
            Mode 51 > Columns: Name ONLY. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode51
            {
                grid-template-areas: "groupicons_member_name";
                grid-template-columns: 1fr;

                grid-template-rows: auto;
                padding: 10px;

            }


        /*
            Mode 52 > Columns: Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode52
            {
                grid-template-areas: "groupicons_member_name "
                                     "groupicons_member_descr";

                grid-template-columns: 1fr;

                grid-template-rows: max-content auto;

            }


        /*
            Mode 53 > Columns:  Name, Description & Ecom >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode53
            {
                grid-template-areas:
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                    /* Set 5 rows */
                    grid-template-rows: max-content auto auto auto auto;
            }


        /*
            Mode 54 > Columns: Icon ONLY >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode54
            {
                grid-template-areas: "groupicons_member_image";
                grid-template-columns: 1fr;

            }

        /*
            Mode 55 > Columns: Icon, Name  >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode55
            {
                grid-template-areas: "groupicons_member_image"
                                     "groupicons_member_name";

                grid-template-columns: 1fr;

            }


        /*
            Mode 56 > Columns: Icon, Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode56
            {
                grid-template-areas: "groupicons_member_image  "
                                     "groupicons_member_name"
                                     "groupicons_member_descr";

                grid-template-columns: 1fr;

                /* Title row is slimmer */
                grid-template-rows: max-content max-content auto;
            }

        /*
            Mode 57 > Columns: Icon, Name, Description & ECOM >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode57
            {
                grid-template-areas:
                "groupicons_member_image    groupicons_member_image"
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                    /* Set 6 rows */
                    grid-template-rows: max-content max-content auto auto auto auto;

            }


    /*
        @headline
        groupicons Tag Headline CSS Styles >>>>>>>>>>>>>>>>>>>>>>>>>
            These are the various css styles for the groupicons tag
            when we want an entry to be a headline type.
    */

        /*
            Mode 50 > HEADLINE Columns: Everything. >>>>>>>>>>>>>>>>>>>>>>>
                This makes the grid cell a Headline type.
                Span 2 cols together.
        */
        .groupicons_column_display_headline_mode50
        {
            /*
                Image top left, title to the right
                description beow.
            */
            grid-template-areas:
                "groupicons_member_image    groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                grid-template-columns: minmax(25%, 50%) 1fr;

                /* Make the title row shorter. */
                grid-template-rows: max-content ;

                /* This makes the div span 2 columns */
                grid-column: span 2;
        }


        /* Mode 50 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode50
        {
            font-weight: 500;
            font-size:20pt;
        }

        /* Mode 50 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode50
        {
            font-size:12pt;
        }


        /*
            Mode 52 > HEADLINE  >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                This makes the grid cell a Headline type.
                Span 2 cols together.
        */
        .groupicons_column_display_headline_mode52
        {
            grid-template-areas: "groupicons_member_name "
                                    "groupicons_member_descr";

            grid-template-columns: 1fr;

            grid-template-rows: max-content auto;

            /* This makes the div span 2 columns */
            grid-column: span 2;
        }


        /* Mode 52 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode52
        {
            font-weight: 400;
            font-size:20pt;
        }


        /* Mode 52 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode52
        {
            font-size:12pt;
        }


        /*
            Mode 53 > HEADLINE:  Name, Description >>>>>>>>>>>>>>>>>>>>>>>
                ESPDOCS ONLY
        */
            .groupicons_column_display_headline_mode53
            {
                grid-template-areas:
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                    /* Set rows */
                    grid-template-rows: max-content auto;

                    /* This makes the div span 2 columns */
                    grid-column: span 2;
            }


        /* Mode 53 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode53
        {
            font-weight: 400;
            font-size:20pt;
        }


        /* Mode 53 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode53
        {
            font-size:12pt;
        }


        /*
            Mode 55 > HEADLINE: Icon, Name  >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_headline_mode55
            {
                grid-template-areas: "groupicons_member_image groupicons_member_name";

                grid-template-columns:  minmax(25%, 40%) 1fr;

                /* This makes the div span 2 columns */
                grid-column: span 2;
            }


            /* Mode 55 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_name_headline_mode55
            {
                font-weight: 400;
                font-size:20pt;
            }


            /* Mode 55 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_descr_headline_mode55
            {
                font-size:12pt;
            }



        /*
            Mode 56 > HEADLINE: Icon, Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_headline_mode56
            {
                grid-template-areas: "groupicons_member_image  groupicons_member_name"
                                     "groupicons_member_descr  groupicons_member_descr";

                grid-template-columns:  minmax(25%, 40%) 1fr;

                /* Title row is slimmer */
                grid-template-rows: max-content max-content;

                /* This makes the div span 2 columns */
                grid-column: span 2;
            }


            /* Mode 56 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_name_headline_mode56
            {
                font-weight: 400;
                font-size:20pt;
            }


            /* Mode 56 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_descr_headline_mode56
            {
                font-size:12pt;
            }




        /*
            Mode 57 > HEADLINE: Everything. >>>>>>>>>>>>>>>>>>>>>>>
                This makes the grid cell a Headline type.
                This one supports ECOM.
        */
        .groupicons_column_display_headline_mode57
        {
            /*
                Image top left, title to the right
                description beow.
            */
            grid-template-areas:
                "groupicons_member_image    groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                grid-template-columns: minmax(25%, 40%) 1fr;

                /* Make the title row shorter. */
                grid-template-rows: max-content ;

                /* This makes the div span 2 columns */
                grid-column: span 2;
        }

        /*
            Mode 57 > HEADLINE Columns: Everything. >>>>>>>>>>>>>>>>>>>>>>>
        */
        .groupicons_member_name_headline_mode57
        {
            font-weight: 500;
            font-size:20pt;
        }

        /* Mode 57 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
         .groupicons_member_descr_headline_mode57
        {
            font-size:12pt;
        }

        .groupicons_column_span_2_cols
        {
            /* This makes the div span 2 columns */
            grid-column: span 2;
        }


        /*
            Row Modes 0 to 7 > Setup the Main Grid Layout (SMALL SCREEN) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                This sets up the main GRID container for modes 0 to 7 in which there is a single
                group member per row.
                This is the setup of the layout which will contain all of the memebers.
        */
        .groupicons_row_modes_main_group_container
        {
            display: grid;
            grid-template-columns: repeat(1, minmax(250px, 1fr));
            grid-template-rows: auto;

            justify-content: space-evenly;
            text-align: left;
            grid-gap: 15px;

        }




        /*
            Setup the Members Grid Cell Layout (LARGE SCREEN) >>>>>>>>>>>>>>>>>>>>>>>>>>
                These are all of the grid cells inside a members grid entry.
        */
        .groupicons_member_container
        {
            display: grid;

            justify-content: space-evenly;
            text-align: left;
            grid-gap: 5px;
            grid-column-gap: 10px;
            padding: 10px;

            background-color: white;
            border-width: 5px;
            border-radius: 30px;
            border-color: #CCF5E1;
            border-style: solid;
        }




       /*
            Mode 0 > SMALL >Single row Everything. >>>>>>>>>>>>>>>>>>>>>>>
        */
        .groupicons_row_display_mode0
        {
            /*
                Small screen image at the top.
            */
                grid-template-areas:

                "groupicons_member_image    groupicons_member_image"
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_price"
                "groupicons_member_discount   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_freight"
                "groupicons_member_add_button  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_stocks"
                "groupicons_member_info    groupicons_member_info";

            /*
                Set the width of the Grid Columns
            */
                grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                /* Set rows */
                grid-template-rows: max-content max-content auto auto auto auto auto auto auto;


            }


        /*
            Mode 0 > SMALL >
                Set the bottom rows to span the 2 columns.
        */
            .groupicons_row_display_mode0:nth-child(7),
            .groupicons_row_display_mode0:nth-child(8),
            .groupicons_row_display_mode0:nth-child(9)
            {
                grid-column: span 2;
            }

        /*
            Mode 0 SMALL > Align the price to the left.
        */
            .groupicons_member_price_mode0
            {
                text-align: left;
            }




        /*
            Mode 1 > SMALL >Single row Name ONLY. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode1
            {
                grid-template-areas: "groupicons_member_name";
                grid-template-columns: 1fr;

                grid-template-rows: auto;
                padding: 10px;

            }


        /*
            Mode 2 > SMALL > Single row Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode2
            {
                grid-template-areas: "groupicons_member_name "
                                     "groupicons_member_descr";

                grid-template-columns: auto;

                grid-template-rows: 0.5fr auto;

            }


        /*
            Mode 3 > SMALL > Single row Name, Description & Ecom >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode3
            {
                grid-template-areas:
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                    /* Set 5 rows */
                    grid-template-rows: max-content max-content auto auto auto;
            }


        /*
            Mode 4 > SMALL > Single row Icon ONLY >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode4
            {
                grid-template-areas: "groupicons_member_image";
                grid-template-columns: 1fr;

            }

        /*
            Mode 5 > SMALL > Single row Icon, Name  >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode5
            {
                grid-template-areas: "groupicons_member_image"
                                     "groupicons_member_name";

                grid-template-columns: 1fr;

            }


        /*
            Mode 6 > SMALL > Single row Icon, Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode6
            {
                grid-template-areas: "groupicons_member_image  "
                                     "groupicons_member_name"
                                     "groupicons_member_descr";

                grid-template-columns: 1fr;

                /* Title row is slimmer */
                grid-template-rows: max-content max-content auto;
            }

        /*
            Mode 7 > SMALL > Single row Icon, Name, Description & ECOM >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_row_display_mode7
            {
                grid-template-areas:
                "groupicons_member_image    groupicons_member_image"
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                    /* Set 6 rows */
                    grid-template-rows: max-content max-content auto auto auto auto;

            }

/* END groupicons SMALL ****************************************************** */







/*
    Mode 20 > LARGE > Espdoc Articles
                Display multiple items per line large image, name, NO descr read more link
*/

.main_items_container_mode20
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  margin-top: 0px;
  margin-bottom: 0px;
}


/*
    Mode 20 > Espdoc Article Headline > Multiple icon with name, NO descr and read more link
*/
.single_item_container_mode20
{
 display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  padding:5px;
  border-bottom-style: solid;
  border-bottom-color:black;
  border-bottom-width: 1px;
}

.item_image_mode20
{
  grid-column: 1/9;
  grid-row: 1 / span 1;
  text-align: center;
}

.item_image_file_mode20
{
   height: 200px;
   max-width: 100%;
}

.item_image_link_mode20
{
   text-decoration:none;
}

.item_dld_hires_mode20
{
  grid-area:5/7/5/7;
}

.item_name_mode20
{
   grid-area:2/1/2/9;
}

.item_name_link_mode20
{
   text-decoration:none;
}


.item_read_more_link_mode20
{
   text-decoration:none;
}


.item_descr_div_mode20
{
  grid-column: 1/9;
  grid-row: 3 / span 2;
  overflow:hidden;
  color:black;
}

.item_info_mode20
{
  grid-area:5/7/5/7;
}

.item_info_icon_mode20
{
   height:25px;
}

/* END MODE 20 SMALL ****************************************************** */



/*
    Mode 21 > LARGE > Espdoc Articles
                Display multiple items per line large image, name, descr read more link
*/
.main_items_container_mode21
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  margin-top: 0px;
  margin-bottom: 0px;
}


/*
    Mode 21 > Espdoc Article Headline > Multiple icon with name, descr and read more link
*/
.single_item_container_mode21
{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  padding:5px;
  border-bottom-style: solid;
  border-bottom-color:black;
  border-bottom-width: 1px;
}

.item_image_mode21
{
  grid-column: 1/9;
  grid-row: 1 / span 1;
  text-align: center;
}

.item_image_file_mode21
{
   height: 200px;
   max-width: 100%;
}

.item_image_link_mode21
{
   text-decoration:none;
}

.item_dld_hires_mode21
{
  grid-area:5/7/5/7;
}

.item_name_mode21
{
   grid-area:2/1/2/9;
}

.item_name_link_mode21
{
   text-decoration:none;
}


.item_read_more_link_mode21
{
   text-decoration:none;
}


.item_descr_div_mode21
{
  grid-column: 1/9;
  grid-row: 3 / span 2;
  overflow:hidden;
  color:black;
}

.item_info_mode21
{
  grid-area:5/7/5/7;
}

.item_info_icon_mode21
{
   height:25px;
}

/* END MODE 21 SMALL ****************************************************** */




/*
    Mode 22 > LARGE > Espdoc Article Headline
                Display multiple items per line large image, name, descr, no ecom.
*/
.main_items_container_mode22
{
   display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  margin-top: 0px;
  margin-bottom: 0px;
}


/*
    Mode 22 > Multiple icon with name onlt per line
*/
.single_item_container_mode22
{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 9fr;
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  padding:5px;
  border-bottom-style: solid;
  border-bottom-color:black;
  border-bottom-width: 1px;
}


/*
    Mode 22 > Headline Espdoc Article Headline > Multiple icon with name, descr
      Display the first article in 2 cols.
*/
.single_item_headline_container_mode22
{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 9fr;
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  padding:5px;
  border-bottom-style: solid;
  border-bottom-color:black;
  border-bottom-width: 1px;
}



.item_image_mode22
{
  grid-column: 1/9;
  grid-row: 1 / span 1;
  text-align: center;
}


.item_headline_image_mode22
{
  grid-column: 1/9;
  grid-row: 1 / span 1;
  text-align: left;
}

.item_image_file_mode22
{
   height: 200px;
   max-width: 100%;
}

.item_headline_image_file_mode22
{
   height: 200px;
   max-width: 100%;
}


.item_image_link_mode22
{
   text-decoration:none;
}

.item_dld_hires_mode22
{
  grid-area:5/7/5/7;
}

.item_name_mode22
{
   grid-area:2/1/2/9;
}

.item_headline_name_mode22
{
   grid-area:2/1/2/10;
}

.item_name_link_mode22
{
   text-decoration:none;
}


.item_headline_name_link_mode22
{
   text-decoration:none;
   font-size:larger;
}


.item_read_more_link_mode22
{
   text-decoration:none;
}


.item_descr_div_mode22
{
  grid-column: 1/9;
  grid-row: 4 / span 2;
  overflow:hidden;
  color:black;
}


.item_headline_descr_div_mode22
{
  grid-column: 1/9;
  grid-row: 3 / span 2;
  overflow:hidden;
  color:black;
}

.item_info_mode22
{
  grid-area:5/7/5/7;
}

.item_info_icon_mode22
{
   height:25px;
}

/* END MODE 22 SMALL ****************************************************** */




/*
    Mode 23 > LARGE > Espdoc Articles > Display on the Left or Right Columns
                Display multiple items per line large image, name, descr read more link
*/
.main_items_container_mode23
{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  margin-top: 0px;
  margin-bottom: 0px;
}


/*
    Mode 23 > Espdoc Article Headline > Multiple icon with name, descr and read more link
*/
.single_item_container_mode23
{
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  justify-content: space-evenly;
  text-align:left;
  grid-gap: 5px;
  padding:5px;
  border-bottom-style: solid;
  border-bottom-color:black;
  border-bottom-width: 1px;
}

.item_image_mode23
{
  grid-column: 1/9;
  grid-row: 1 / span 1;
  text-align: center;
}

.item_image_file_mode23
{
   height: 200px;
   max-width: 100%;
}

.item_image_link_mode23
{
   text-decoration:none;
}

.item_dld_hires_mode23
{
  grid-area:5/7/5/7;
}

.item_name_mode23
{
   grid-area:2/1/2/9;
}

.item_name_link_mode23
{
   text-decoration:none;
}


.item_read_more_link_mode23
{
   text-decoration:none;
}


.item_descr_div_mode23
{
  grid-column: 1/9;
  grid-row: 3 / span 2;
  overflow:hidden;
  color:black;
}

.item_info_mode23
{
  grid-area:5/7/5/7;
}

.item_info_icon_mode23
{
   height:25px;
}

/* END MODE 23 SMALL ****************************************************** */



#quick_login_button
{
  font-size:medium;
}


/* End SMALL DISPLAY CSS */
}



/*
        @SMALL SCREEN <= 500 Pixels or LESS SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
                 Targets screens where the viewport width is 500 pixels or less.
                ie applies to windows that have a max width below 500px.
*/
@media only screen and (max-width: 500px)
{



/*
     5 April 2025 Course and Lesson Title Prefix Text class styles

*/

.course_cfg_doc_title_prefix_class
{
    color:red;
}

.lesson_doc_title_prefix_class
{
    color:magenta;
}


   /* Only show the left menu hamburger title on small displays. */
   .dp_page_title_small_class
   {
       display:block;
   }

   /* Hide the lesson title in the main title area on small devices. */
  .dp_page_title_class
  {
     display:none;
  }


        /*
            SMALL <= 500 Pixels> Row Modes 0 to 7 > Setup the Main Grid Layout >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
                This sets up the main GRID container for modes 0 to 7 in which there is a single
                group member per row.
                This is the setup of the layout which will contain all of the memebers.
        */
        .groupicons_row_modes_main_group_container
        {
            display: grid;
            grid-template-columns: minmax(250px, 1fr);
            grid-template-rows: auto;

            justify-content: space-evenly;
            text-align: left;
            grid-gap: 15px;

        }


            .groupicons_column_modes_main_group_container
            {
                display: grid;
                grid-template-columns: minmax(250px, 1fr);
                grid-template-rows: auto;

                justify-content: space-evenly;
                text-align: left;
                grid-gap: 15px;
                margin: 10px;
            }




        /*
            Setup the Members Grid Cell Layout (LARGE SCREEN) >>>>>>>>>>>>>>>>>>>>>>>>>>
                These are all of the grid cells inside a members grid entry.
        */
        .groupicons_member_container
        {
            display: grid;

            justify-content: space-evenly;
            text-align: left;
            grid-gap: 5px;
            grid-column-gap: 10px;
            padding: 10px;

            background-color: white;
            border-width: 5px;
            border-radius: 30px;
            border-color: #CCF5E1;
            border-style: solid;
        }


        /*
            SMALL <= 500 Pixels>  For the members image file.
        */
        .groupicons_member_image_file
        {
            text-align: center;
            width: 100%; /* Scale the image to the width of the container */
            height: 200px; /* Maintain the aspect ratio */
            max-width: 100%; /* Ensure the image doesn't exceed the container's width */
            object-fit: contain; /* Ensure the image fits within the container */
            border-radius: 10px;

            background-color:white; /* in case the icon has no background */
        }

        /*
            SMALL <= 500 Pixels>  Mode 0 > SMALL >Single row Everything. >>>>>>>>>>>>>>>>>>>>>>>
        */
        .groupicons_row_display_mode0
        {
            /*
                Small screen image at the top.
            */
                grid-template-areas:

                "groupicons_member_image    "
                "groupicons_member_name     "
                "groupicons_member_descr    "
                "groupicons_member_price   "
                "groupicons_member_discount   "
                "groupicons_member_freight  "
                "groupicons_member_add_button  "
                "groupicons_member_stocks    "
                "groupicons_member_info    ";

            /*
                Set the width of the Grid Columns
            */
                grid-template-columns: repeat(1, 1fr);

                /* Set rows */
                grid-template-rows: max-content max-content auto auto auto auto auto auto auto;


            }




        /*
            SMALL <= 500 Pixels>  Mode 0 > Align the price to the left.
        */
            .groupicons_member_price_mode0
            {
                text-align: left;
            }



        /*
            SMALL <= 500 Pixels> Mode 50 > Columns: Everything. >>>>>>>>>>>>>>>>>>>>>>>
        */
        .groupicons_column_display_mode50
        {
            /*
                Small screen image at the top.
            */
                grid-template-areas:
                "groupicons_member_image    "
                "groupicons_member_name     "
                "groupicons_member_descr    "
                "groupicons_member_price   "
                "groupicons_member_discount"
                "groupicons_member_freight  "
                "groupicons_member_add_button"
                "groupicons_member_stocks "
                "groupicons_member_info";

            /*
                Set the width of the Grid Columns
            */
                grid-template-columns: 1fr;

                /* Set 6 rows */
                grid-template-rows:  max-content max-content auto auto auto auto;
            }





        /*
            SMALL <= 500 Pixels> Mode 51 > Columns: Name ONLY. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode51
            {
                grid-template-areas: "groupicons_member_name";
                grid-template-columns: 1fr;

                grid-template-rows: auto;
                padding: 10px;

            }


        /*
           SMALL <= 500 Pixels>  Mode 52 > Columns: Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode52
            {
                grid-template-areas: "groupicons_member_name "
                                     "groupicons_member_descr";

                grid-template-columns: 1fr;

                grid-template-rows: max-content auto;

            }


        /*
            SMALL <= 500 Pixels> Mode 53 > Columns:  Name, Description & Ecom >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode53
            {
                grid-template-areas:
                "groupicons_member_name     "
                "groupicons_member_descr    "
                "groupicons_member_price   "
                "groupicons_member_discount"
                "groupicons_member_freight  "
                "groupicons_member_add_button"
                "groupicons_member_stocks    "
                "groupicons_member_info";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: 1fr;

                    /* Set 5 rows */
                    grid-template-rows: max-content auto auto auto auto auto auto;
            }


        /*
           SMALL <= 500 Pixels>  Mode 54 > Columns: Icon ONLY >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode54
            {
                grid-template-areas: "groupicons_member_image";
                grid-template-columns: 1fr;

            }

        /*
            SMALL <= 500 Pixels> Mode 55 > Columns: Icon, Name  >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode55
            {
                grid-template-areas: "groupicons_member_image"
                                     "groupicons_member_name";

                grid-template-columns: 1fr;

            }


        /*
            SMALL <= 500 Pixels> Mode 56 > Columns: Icon, Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode56
            {
                grid-template-areas: "groupicons_member_image  "
                                     "groupicons_member_name"
                                     "groupicons_member_descr";

                grid-template-columns: 1fr;

                /* Title row is slimmer */
                grid-template-rows: max-content max-content auto;
            }

        /*
            SMALL <= 500 Pixels> Mode 57 > Columns: Icon, Name, Description & ECOM >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_mode57
            {
                grid-template-areas:
                "groupicons_member_image    groupicons_member_image"
                "groupicons_member_name     groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                /*
                    Set the width of the Grid Columns
                */
                    grid-template-columns: repeat(2, 1fr); /* Two equal columns */

                    /* Set 6 rows */
                    grid-template-rows: max-content max-content auto auto auto auto;

            }


    /*
        SMALL <= 500 Pixels> @headline Modes SMALL SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
        groupicons Tag Headline CSS Styles >>>>>>>>>>>>>>>>>>>>>>>>>
            These are the various css styles for the groupicons tag
            when we want an entry to be a headline type.
    */

    /*
        SMALL <= 500 Pixels>  Mode 50 > HEADLINE Columns: Everything. >>>>>>>>>>>>>>>>>>>>>>>
            This makes the grid cell a Headline type.
            Span 2 cols together.
    */
        .groupicons_column_display_headline_mode50
        {
            /*
                Image top left, title to the right
                description beow.
            */
            grid-template-areas:
                "groupicons_member_image    "
                "groupicons_member_name     "
                "groupicons_member_descr    "
                "groupicons_member_price   "
                "groupicons_member_discount"
                "groupicons_member_freight  "
                "groupicons_member_add_button"
                "groupicons_member_stocks "
                "groupicons_member_info";

                grid-template-columns: 1fr;

                /* Make the title row shorter. */
                grid-template-rows: max-content ;

                /* This makes the div span 1 column */
                grid-column: span 1;
        }


        /* Mode 50 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode50
        {
            font-weight: 500;
            font-size:20pt;
        }

        /* Mode 50 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode50
        {
            font-size:12pt;
        }


    /*
        SMALL <= 500 Pixels>  Mode 52 > HEADLINE  >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
            This makes the grid cell a Headline type.
            Span 2 cols together.
    */
        .groupicons_column_display_headline_mode52
        {
            grid-template-areas: "groupicons_member_name "
                                    "groupicons_member_descr";

            grid-template-columns: 1fr;

            grid-template-rows: max-content auto;

            /* This makes the div span 1 columns */
            grid-column: span 1;
        }


        /* Mode 52 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode52
        {
            font-weight: 400;
            font-size:20pt;
        }


        /* Mode 52 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode52
        {
            font-size:12pt;
        }


    /*
        SMALL <= 500 Pixels> Mode 53 > HEADLINE:  Name, Description >>>>>>>>>>>>>>>>>>>>>>>
            ESPDOCS ONLY
    */
        .groupicons_column_display_headline_mode53
        {
            grid-template-areas:
            "groupicons_member_name     "
            "groupicons_member_descr    "
            "groupicons_member_price   "
            "groupicons_member_discount"
            "groupicons_member_freight  "
            "groupicons_member_add_button"
            "groupicons_member_stocks "
            "groupicons_member_info";

            /*
                Set the width of the Grid Columns
            */
                grid-template-columns: 1fr;

                /* Set rows */
                grid-template-rows: max-content auto;

                /* This makes the div span 1 columns */
                grid-column: span 1;
        }


        /* Mode 53 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode53
        {
            font-weight: 400;
            font-size:20pt;
        }


        /* Mode 53 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode53
        {
            font-size:12pt;
        }


        /*
            SMALL <= 500 Pixels>   Mode 55 > HEADLINE: Icon, Name  >>>>>>>>>>>>>>>>>>>>>>>
        */
            .groupicons_column_display_headline_mode55
            {
                grid-template-areas: "groupicons_member_image groupicons_member_name";

                grid-template-columns:  minmax(25%, 40%) 1fr;

                /* This makes the div span 1 columns */
                grid-column: span 1;
            }


            /* Mode 55 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_name_headline_mode55
            {
                font-weight: 400;
                font-size:20pt;
            }


            /* Mode 55 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_descr_headline_mode55
            {
                font-size:12pt;
            }



    /*
        SMALL <= 500 Pixels>  Mode 56 > HEADLINE: Icon, Name & Description. >>>>>>>>>>>>>>>>>>>>>>>
    */
        .groupicons_column_display_headline_mode56
        {
            grid-template-areas: "groupicons_member_image  groupicons_member_name"
                                    "groupicons_member_descr  groupicons_member_descr";

            grid-template-columns:  minmax(25%, 40%) 1fr;

            /* Title row is slimmer */
            grid-template-rows: max-content max-content;

            /* This makes the div span 1 columns */
            grid-column: span 1;
        }


        /* Mode 56 > HEADLINE Name >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_name_headline_mode56
        {
            font-weight: 400;
            font-size:20pt;
        }


        /* Mode 56 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
        .groupicons_member_descr_headline_mode56
        {
            font-size:12pt;
        }




    /*
        SMALL <= 500 Pixels>  Mode 57 > HEADLINE: Everything. >>>>>>>>>>>>>>>>>>>>>>>
            This makes the grid cell a Headline type.
            This one supports ECOM.
    */
        .groupicons_column_display_headline_mode57
        {
            /*
                Image top left, title to the right
                description beow.
            */
            grid-template-areas:
                "groupicons_member_image    groupicons_member_name"
                "groupicons_member_descr    groupicons_member_descr"
                "groupicons_member_price   groupicons_member_discount"
                "groupicons_member_freight  groupicons_member_add_button"
                "groupicons_member_stocks    groupicons_member_info";

                grid-template-columns: minmax(25%, 40%) 1fr;

                /* Make the title row shorter. */
                grid-template-rows: max-content ;

                /* This makes the div span 1 columns */
                grid-column: span 1;
        }

        /*
            Mode 57 > HEADLINE Columns: Everything. >>>>>>>>>>>>>>>>>>>>>>>
        */
        .groupicons_member_name_headline_mode57
        {
            font-weight: 500;
            font-size:20pt;
        }

        /* Mode 57 > HEADLINE Description >>>>>>>>>>>>>>>>>>>>>>> */
            .groupicons_member_descr_headline_mode57
        {
            font-size:12pt;
        }



} /*  END @SMALL SCREEN <= 500 Pixels or LESS SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS  */

